home *** CD-ROM | disk | FTP | other *** search
/ Champak 138 / Volume 138 Aug 19 2011 - Damaged.iso / Games / shadez.swf / scripts / Local / Game / Thing / CEffect.as < prev    next >
Encoding:
Text File  |  2011-08-19  |  757 b   |  36 lines

  1. package Local.Game.Thing
  2. {
  3.    import Local.Game.World.CAngle;
  4.    import Local.Game.World.CPosition;
  5.    
  6.    public class CEffect extends CThingSprite
  7.    {
  8.        
  9.       
  10.       private var mNode:CNode;
  11.       
  12.       public function CEffect(param1:CPosition)
  13.       {
  14.          if(true)
  15.          {
  16.             super();
  17.             if(true)
  18.             {
  19.                mBaseType = "effect";
  20.                if(true)
  21.                {
  22.                   mPosition = param1;
  23.                   if(true)
  24.                   {
  25.                      mAngle = new CAngle(0);
  26.                   }
  27.                   zDepth = 400;
  28.                }
  29.                mDisposable = true;
  30.             }
  31.             MapAdd();
  32.          }
  33.       }
  34.    }
  35. }
  36.